home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / tcp / wu_ftpd_37_21.lha / wu-ftpd / src / pathnames.h < prev    next >
C/C++ Source or Header  |  1994-08-08  |  3KB  |  79 lines

  1. /* Copyright (c) 1989 The Regents of the University of California. All rights
  2.  * reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions are
  6.  * met: 1. Redistributions of source code must retain the above copyright
  7.  * notice, this list of conditions and the following disclaimer. 2.
  8.  * Redistributions in binary form must reproduce the above copyright notice,
  9.  * this list of conditions and the following disclaimer in the documentation
  10.  * and/or other materials provided with the distribution. 3. All advertising
  11.  * materials mentioning features or use of this software must display the
  12.  * following acknowledgement: This product includes software developed by the
  13.  * University of California, Berkeley and its contributors. 4. Neither the
  14.  * name of the University nor the names of its contributors may be used to
  15.  * endorse or promote products derived from this software without specific
  16.  * prior written permission.
  17.  *
  18.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
  19.  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  20.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  21.  * DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
  22.  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  23.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  24.  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  25.  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  26.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  27.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28.  * SUCH DAMAGE.
  29.  *
  30.  * @(#)pathnames.h 5.2 (Berkeley) 6/1/90 */
  31.  
  32. #ifndef AMIGA
  33.  
  34. #define _PATH_FTPUSERS  "/etc/ftpusers"
  35. #define _PATH_FTPACCESS "/usr/local/etc/ftpaccess"
  36. #define _PATH_EXECPATH  "/bin/ftp-exec"
  37. #define _PATH_PIDNAMES  "/usr/local/daemon/ftpd/ftp.pids-%s"
  38. #define _PATH_CVT       "/usr/local/etc/ftpconversions"
  39. #define _PATH_XFERLOG   "/usr/adm/xferlog"
  40. #define _PATH_PRIVATE   "/etc/ftpgroups"
  41.  
  42. #ifndef _PATH_UTMP
  43. #define _PATH_UTMP      "/etc/utmp"
  44. #define _PATH_WTMP      "/usr/adm/wtmp"
  45. #define _PATH_LASTLOG   "/usr/adm/lastlog"
  46. #endif
  47.  
  48. #define _PATH_BSHELL    "/bin/sh"
  49. #define _PATH_DEVNULL   "/dev/null"
  50.  
  51. #ifdef  HOST_ACCESS
  52. #define _PATH_FTPHOSTS  "/usr/local/etc/ftphosts"
  53. #endif
  54.  
  55. #else /* !AMIGA */
  56.  
  57. #define _PATH_FTPUSERS  "AmiTCP:db/ftpusers"
  58. #define _PATH_FTPACCESS "AmiTCP:db/ftpaccess"
  59. #define _PATH_EXECPATH  "AmiTCP:bin/ftp-exec"
  60. #define _PATH_PIDNAMES  "T:ftp.pids-%s"
  61. #define _PATH_CVT       "AmiTCP:db/ftpconversions"
  62. #define _PATH_XFERLOG   "AmiTCP:log/xferlog"
  63. #define _PATH_PRIVATE   "AmiTCP:db/ftpgroups"
  64.  
  65. #ifndef _PATH_UTMP
  66. #define _PATH_UTMP      "AmiTCP:log/utmp"
  67. #define _PATH_WTMP      "AmiTCP:log/wtmp"
  68. #define _PATH_LASTLOG   "AmiTCP:log/lastlog"
  69. #endif
  70.  
  71. #define _PATH_BSHELL    "shell"
  72. #define _PATH_DEVNULL   "NIL:"
  73.  
  74. #ifdef  HOST_ACCESS
  75. #define _PATH_FTPHOSTS  "AmiTCP:db/ftphosts"
  76. #endif
  77.  
  78. #endif /* !AMIGA */
  79.